home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / sd.dir / 00005_Main FS.ls < prev    next >
Encoding:
Text File  |  1996-04-18  |  3.8 KB  |  154 lines

  1. global gSDHelpUp, gSDNoPickUp, gSISystem, gSIActiveWindow, gSIHParentWnd
  2.  
  3. on mouseDown
  4.   if gSISystem = "WIN" then
  5.     set vHWnd to gSIActiveWindow(mCall)
  6.     if vHWnd <> gSIHParentWnd then
  7.       go(the frame)
  8.       exit
  9.     end if
  10.   end if
  11.   if gSDNoPickUp then
  12.     set gSDNoPickUp to 0
  13.     exit
  14.   end if
  15.   if gSDHelpUp then
  16.     HSStatePut("sd2", "not1stTime", "1")
  17.     set the visible of sprite 38 to 0
  18.     set gSDHelpUp to 0
  19.   end if
  20.   set vPoint to point(the mouseH, the mouseV)
  21.   set vBinLoc to BinLocation(vPoint)
  22.   if vBinLoc <> 0 then
  23.     ClickInBin(vBinLoc)
  24.   else
  25.     set vGridLoc to PuzzleLocation(vPoint)
  26.     if vGridLoc <> EMPTY then
  27.       ClickInPuzzle(vGridLoc)
  28.     else
  29.       beep()
  30.     end if
  31.   end if
  32. end
  33.  
  34. on exitFrame
  35.   global gSDDragging, cSDDragSprite
  36.   if gSISystem = "WIN" then
  37.     set vHWnd to gSIActiveWindow(mCall)
  38.     if vHWnd <> gSIHParentWnd then
  39.       go(the frame)
  40.       exit
  41.     end if
  42.   end if
  43.   if gSDDragging then
  44.     set the locH of sprite cSDDragSprite to the mouseH
  45.     set the locV of sprite cSDDragSprite to the mouseV
  46.     updateStage()
  47.   else
  48.     UIRollover(44, 45)
  49.   end if
  50.   go(the frame)
  51. end
  52.  
  53. on ClickInPuzzle aLoc
  54.   global gSDDragging, gSDDragNum, gSDDragPiece, cSDDragSprite
  55.   set vNew to GetPuzzleAt(aLoc)
  56.   if gSDDragging then
  57.     if not PieceFits(aLoc, gSDDragPiece) then
  58.       puppetSound("boing")
  59.       return 
  60.     end if
  61.     set vRect to GetPuzzleRect(aLoc)
  62.     set the castNum of sprite gSDDragNum to cast ("N_" & gSDDragPiece)
  63.     set the locH of sprite gSDDragNum to getAt(vRect, 1) + (the width of cast ("N_" & gSDDragPiece) / 2)
  64.     set the locV of sprite gSDDragNum to getAt(vRect, 2) + (the height of cast ("N_" & gSDDragPiece) / 2)
  65.     PutPuzzleAt(aLoc, gSDDragPiece)
  66.     EndDrag()
  67.     CheckPuzzle()
  68.   else
  69.     PutPuzzleAt(aLoc, EMPTY)
  70.   end if
  71.   if vNew <> EMPTY then
  72.     BeginDrag(vNew)
  73.   end if
  74. end
  75.  
  76. on ClickInBin aLoc
  77.   global gSDDragging, gSDDragNum, gSDDragPiece
  78.   set vNew to GetBinAt(aLoc)
  79.   if gSDDragging then
  80.     set vRect to GetBinRect(aLoc)
  81.     set the castNum of sprite gSDDragNum to cast ("S_" & gSDDragPiece)
  82.     set the locH of sprite gSDDragNum to getAt(vRect, 1) + (the width of cast ("S_" & gSDDragPiece) / 2)
  83.     set the locV of sprite gSDDragNum to getAt(vRect, 2) + (the height of cast ("S_" & gSDDragPiece) / 2)
  84.     PutBinAt(aLoc, gSDDragPiece)
  85.     EndDrag()
  86.     CheckPuzzle()
  87.   else
  88.     PutBinAt(aLoc, EMPTY)
  89.   end if
  90.   if vNew <> EMPTY then
  91.     BeginDrag(vNew)
  92.   end if
  93. end
  94.  
  95. on BeginDrag aPiece
  96.   global gSDDragging, cSDDragSprite, gSDDragNum, gSDDragPiece, cSDSpriteBase
  97.   puppetSound("pickup")
  98.   set gSDDragging to 1
  99.   set gSDDragPiece to aPiece
  100.   set the castNum of sprite cSDDragSprite to cast ("N_" & aPiece)
  101.   set gSDDragNum to NameToNum(aPiece)
  102.   set the locH of sprite cSDDragSprite to the mouseH
  103.   set the locV of sprite cSDDragSprite to the mouseV
  104.   set the visible of sprite gSDDragNum to 0
  105.   set the visible of sprite cSDDragSprite to 1
  106.   updateStage()
  107. end
  108.  
  109. on EndDrag
  110.   global gSDDragging, cSDDragSprite, gSDDragNum, gSDDragPiece
  111.   puppetSound("putdown")
  112.   set gSDDragging to 0
  113.   set the visible of sprite cSDDragSprite to 0
  114.   set the visible of sprite gSDDragNum to 1
  115.   updateStage()
  116. end
  117.  
  118. on PieceFits aLoc, aPiece
  119.   if PieceType(aLoc) = PieceType(aPiece) then
  120.     return 1
  121.   else
  122.     return 0
  123.   end if
  124. end
  125.  
  126. on PieceType aPiece
  127.   set vVOdd to value(char 1 of aPiece) mod 2
  128.   set vHOdd to value(char 3 of aPiece) mod 2
  129.   if vHOdd then
  130.     if vVOdd then
  131.       return #vert
  132.     else
  133.       return #horiz
  134.     end if
  135.   else
  136.     if vVOdd then
  137.       return #horiz
  138.     else
  139.       return #vert
  140.     end if
  141.   end if
  142. end
  143.  
  144. on CheckPuzzle
  145.   global cSDSpriteBase
  146.   if PuzzleComplete() then
  147.     SetCursor(#wait)
  148.     go("Install")
  149.     repeat with vI = cSDSpriteBase + 1 to cSDSpriteBase + 36
  150.       set the visible of sprite vI to 0
  151.     end repeat
  152.   end if
  153. end
  154.